This article covers how to use Power Automate to automate the extraction of email attachments for a given email account and uniquely save the files in a SharePoint folder.
Statistics can become stale when the data in the table changes substantially. Up-to-date statistics are important to generate good execution plans How does Oracle decide if the stats have become stale Stats are considered stale when #(INSERTS + UPDATES + DELETES) >= 10% of NUM_ROWS from dba_tables: Parameter setting required to Track the table changes […]
The post How to check Stale statistics appeared first on Techgoeasy.
In this post, we will be discussing Java web start implementation in R12/R12.1 and R12.2 versions of EBS. we will see why it is important to implement it What is Java Web start? Java Web Start provides a browser-independent architecture for deploying Java technology-based applications to the client desktop. With Java Web Start, users can […]
The post Java web start(JWS) in R12 appeared first on Techgoeasy.
Archive logs keep accumulating and we need to put things in place to delete them on a regular basis. We should not be deleting the archivelog from the filesystem directly as the Oracle Database is not aware of that and space is not released in the Flash recovery area Let’s see a few commands to […]
The post How to delete the archive logs in Oracle appeared first on Techgoeasy.
This tip will review the different ways of granting privileges in SQL Server, Oracle, and PostgreSQL, the differences in the concepts of roles, schemas, and owners, and the way to grant permissions on the whole schema.
Serverless computing is pushing C# to evolve to the next level. This is exciting because you pay-per-use and only incur charges when the code is running. This means that .NET 6 must spin up fast, do its job, then die quickly. This mantra of birth and rebirth pushes developers and the underlying tech to think …
The post AWS Lambdas with C# appeared first on Simple Talk.
We often come across a situation where a sql statement is giving issues. SQL monitor report is a very useful tool to analyze the various operation done by the sql, wait events, bind variables, and memory details. The below statement can be used to monitor any active sql or done sql in the database SET […]
The post How to generate sql monitor report in Oracle appeared first on Techgoeasy.
Many operations take time in the Database like full table scan, backup, full index scan, and joins. We can estimate the % completion or monitor the session using the v$session_longops view in Oracle. This is a very useful view and provides quite an accurate estimate. How to find the %completion for the long operation for […]
The post How to find the long running (longops session) in Oracle appeared first on Techgoeasy.
This article provides a clear overview of the key cloud roles and responsibilities involved in cloud platform transformation and administration. These roles include leadership, development, and support personas at both cloud and traditional levels that all play a role in advancing an organization's evolutionary and revolutionary goals.
In this article, we look at the steps to add another disk to an existing Windows Failover Cluster used for SQL Server and also how to move an existing database to this new disk.
We often come across a situation in EBS Database, where we want to know the Concurrent request id from the given SID or SPID. Here are some queries which can be helpful in this situation How to find the concurrent request id from Sid Non-RAC set lines 2000select a.request_id ,a.os_process_id,b.sid from apps.fnd_concurrent_requests a,v$session b whereb.audsid(+)= […]
The post How to find concurrent request id from Sid or spid appeared first on Techgoeasy.
The use of SQL Server in the cloud continues to grow, but there is still the need to manage on-premises installations. Learn about one tool that can help you manage all of your SQL Server installations whether they are on-premises or in the cloud to help you be more productive and save money at the same time.
I wrote about Managed Identity Secrets a few weeks ago, but since that article was published I made new interesting discoveries to add more to these secrets. The combination of possibilities is considerable, and I faced two new situations I hadn’t faced before. Let’s discover the new secrets. Storage Accounts and Triggers The storage …
The post Azure Functions and Managed Identity: More Secrets appeared first on Simple Talk.
In this tip, we look at filtered indexes and how to create them in SQL Server as well as how to get a filtered index to work when pulling data back from more than one table.
: Redgate Hub Product articles University Events Forums Community Simple Talk Home Cloud DevOps Sysadmin Development Databases Opinion Books Blogs Log in Sign up Ryan.Booz 19 January 2023 0 35 views 0 Home Databases PostgreSQL PostgreSQL Basics : Roles and Privileges Ryan.Booz 19 January 2023 35 views 0 0 PostgreSQL Basics : Roles and Privileges Information security , whether in databases , applications , or larger IT systems , is based on the principles of Authentication and Authorization , often referred to as AuthN and AuthZ respectively . Likewise , PostgreSQL security involves creating roles that allow access to server resources AuthN and then granting privileges to database objects appropriately AuthZ Understanding how each of these components work together is essential to
This article covers how to download data into a SQL Server database to do a comparison of whether leveraged versus unleveraged ETF are a better long-term investment.
Once data is in a table it needs to be maintained. New records will need to be added, and existing records will need to be updated, and/or deleted. To keep data maintained, the insert, update or delete actions may need to be performed. This article will show how those three data manipulation language (DML) actions can be synchronized together within a single basic MERGE statement.…
The post Manage Data Over Time with SQL Server MERGE Statement appeared first on Simple Talk.
CETAS is the acronym for Create External Table As Select. This allow us to export the result of a select to an external table in different formats, such as PARQUET or CSV. We can also convert the format from one external table to another. The SELECT used on the CETAS can be an external table …
The post Synapse Serverless: CETAS requires DFS to work appeared first on Simple Talk.
This tip drills down on how to process JSON files with SQL Server and demonstrates an approach for extracting key values from JSON nested key-value pairs.
In this article, we look at how to setup and configure Contained Availability Groups in SQL Server 2022 and some of the new options this feature allows.
: Redgate Hub Product articles University Events Forums Community Simple Talk Home Cloud DevOps Sysadmin Development Databases Opinion Books Blogs Log in Sign up Grant Fritchey 09 January 2023 0 41 views 0 Home Databases PostgreSQL Index Types in PostgreSQL : Learning PostgreSQL with Grant Grant Fritchey 09 January 2023 41 views 0 0 Index Types in PostgreSQL : Learning PostgreSQL with Grant As with any other relational data management system RDBMS PostgreSQL uses indexes as a mechanism to improve data access . PostgreSQL has a number of different index types , supporting different behaviors and different types of data . In addition , again , similar to other RDBMS , there are properties and behaviors associated with these . indexes In this article Iâ m going to go over the different types
This article intends to cover a few tips for creating a technology roadmap for your organization by identifying requirements, priorities, stakeholders, and plans.
As with many relational database management systems, MySQL provides a variety of methods for combining data in a data manipulation language (DML) statement. You can join multiple tables in a single query or add subqueries that pull data in from other tables. You can also access views and temporary tables from within a statement, often …
The post Introducing the MySQL common table expression appeared first on Simple Talk.
In this article, we look at how to add a Report Server project to an existing Visual Studio Solution for a database and website along with how to develop reports.